Step Property (InputTime<T>)
In This Topic
Gets or sets the number of minutes between entries in the drop-down list.
Syntax
'Declaration
<JsonAttribute(1)>
<System.ComponentModel.DefaultValueAttribute(15)>
Public Property Step As System.Integer
'Usage
Dim instance As InputTime(Of T)
Dim value As System.Integer
instance.Step = value
value = instance.Step
[Json(1)]
[System.ComponentModel.DefaultValue(15)]
public System.int Step {get; set;}
public read-write property Step: System.Integer;
JsonAttribute(1)
System.ComponentModel.DefaultValueAttribute(15)
public function get,set Step : System.int
[Json(1)]
[System.ComponentModel.DefaultValue(15)]
public: __property System.int get_Step();
public: __property void set_Step(
System.int value
);
[Json(1)]
[System.ComponentModel.DefaultValue(15)]
public:
property System.int Step {
System.int get();
void set ( System.int value);
}
See Also